
include ../settings.mk

check: test.c ../math/math.o
	$(CC) test.c ../math/math.o -I../math -I. -o test
	./test

preproc:
	gcc test.c -I../math -I. -E -o test.E

clean:
	-rm *.o test *~

